home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / main.dir / 00171_Script_171 < prev    next >
Text File  |  1998-08-26  |  717b  |  32 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   if rollover(50) then
  6.     set the visible of sprite 41 to false
  7.     set the visible of sprite 44 to true
  8.     set the visible of sprite 48 to true
  9.   end if
  10.   
  11.   if not rollover(50) then
  12.     set the visible of sprite 41 to true
  13.     set the visible of sprite 44 to false
  14.     set the visible of sprite 48 to false
  15.   end if
  16.   
  17.   if rollover(51) then
  18.     set the visible of sprite 42 to false
  19.     set the visible of sprite 45 to true
  20.     set the visible of sprite 47 to true
  21.   end if
  22.   
  23.   if not rollover(51) then
  24.     set the visible of sprite 42 to true
  25.     set the visible of sprite 45 to false
  26.     set the visible of sprite 47 to false
  27.   end if
  28.   
  29. end
  30.  
  31.  
  32.